home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / Cookie / Source / InfoController.m < prev    next >
Encoding:
Text File  |  1995-06-12  |  488 b   |  33 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "InfoController.h"
  5. #import <appkit/appkit.h>
  6.  
  7. #import "BattleZoneView.h"
  8.  
  9. @implementation InfoController
  10.  
  11. - startInfo:sender
  12. {
  13.     if(!battleView)
  14.         [NXApp loadNibSection:"Info.nib" owner:self withNames:YES];
  15.  
  16.     [[battleView window] makeKeyAndOrderFront:self];
  17.     [battleView startAnimation];
  18.     [stellaView startAnimation];
  19.  
  20.     return self;
  21. }
  22.  
  23. -windowWillClose:sender
  24. {
  25.     [battleView endAnimation];
  26.     [stellaView endAnimation];
  27.  
  28.     return self;
  29. }
  30.  
  31.  
  32. @end
  33.